【例子介绍】佳能Canon SDK最新(C#,C,Delphi,附例子源码)
【相关图片】
【源码结构】
文件清单
└── Canon SDK
├── CanonSDK_C#
│ ├── CanonSDK
│ │ ├── AssemblyInfo.cs
│ │ ├── bin
│ │ ├── Camera.cs
│ │ ├── CanonSDK.csproj
│ │ ├── CanonSDK.csproj.user
│ │ ├── CanonSDK.csproj.vspscc
│ │ ├── CanonSDK.sln
│ │ ├── CanonSDK.suo
│ │ ├── cdAPI.cs
│ │ ├── cdConstants.cs
│ │ ├── cdError.cs
│ │ ├── cdType.cs
│ │ ├── MSSCCPRJ.SCC
│ │ ├── prAPI.cs
│ │ ├── prError.cs
│ │ └── prType.cs
│ ├── CanonSDK.html
│ ├── canonSDK.JPG
│ └── CanonSDKSample
│ ├── CanonSDKSample
│ │ ├── CanonSDKSample.csproj
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── CanonSDKSample.sln
│ └── CanonSDKSample.suo
└── CDSDK73
├── CANON SDK73 BIN
│ ├── doc
│ │ ├── CDSDK71UserGuide.pdf
│ │ └── CDSDK71_WIN.TXT
│ ├── inc
│ │ ├── cdAPI.h
│ │ ├── cdError.h
│ │ ├── cdEvent.h
│ │ ├── cdFncTyp.h
│ │ └── cdType.h
│ ├── lib
│ │ └── CDSDK.lib
│ └── redist
│ ├── cdDcd.dll
│ ├── cdDvlp.dll
│ ├── cdParse.dll
│ ├── CDPROC.exe
│ ├── CDPROCMN.exe
│ ├── CDPTPCLS.dll
│ ├── CDPTPCLT.dll
│ ├── CDRAPCLS.dll
│ ├── CDSDK.dll
│ ├── EWatch.exe
│ ├── GetPicture.exe
│ ├── IWrap.dll
│ ├── psCamDat.dll
│ ├── RelCtrldemo.exe
│ └── RelCtrl.exe
├── Sample
│ ├── GETPICTURE
│ │ ├── ComSettingDlg.cpp
│ │ ├── ComSettingDlg.h
│ │ ├── Debug
│ │ │ └── GetPicture.exe
│ │ ├── GETPICTURE.CLW
│ │ ├── GETPICTURE.CPP
│ │ ├── GETPICTUREDLG.CPP
│ │ ├── GETPICTUREDLG.H
│ │ ├── GetPicture.dsp
│ │ ├── GETPICTURE.DSW
│ │ ├── GETPICTURE.H
│ │ ├── GETPICTURE.NCB
│ │ ├── GETPICTURE.OPT
│ │ ├── GETPICTURE.PLG
│ │ ├── GetPicture.rc
│ │ ├── README.TXT
│ │ ├── Release
│ │ │ └── GetPicture.exe
│ │ ├── RES
│ │ │ ├── GETPICTURE.ICO
│ │ │ └── GETPICTURE.RC2
│ │ ├── resource.h
│ │ ├── STDAFX.CPP
│ │ └── STDAFX.H
│ └── RELCTRL
│ ├── ComSettingDlg.cpp
│ ├── ComSettingDlg.h
│ ├── MYSTREAM.CPP
│ ├── MYSTREAM.H
│ ├── PROGRESS.CPP
│ ├── Progress.h
│ ├── README.TXT
│ ├── RelCtrl.aps
│ ├── RELCTRL.CLW
│ ├── RELCTRL.CPP
│ ├── RelCtrlDlg.cpp
│ ├── RelCtrlDlg.h
│ ├── RelCtrl.dsp
│ ├── RELCTRL.DSW
│ ├── RELCTRL.H
│ ├── RELCTRL.NCB
│ ├── RELCTRL.OPT
│ ├── RELCTRL.PLG
│ ├── RelCtrl.rc
│ ├── RES
│ │ ├── RELCTRL.ICO
│ │ └── RELCTRL.RC2
│ ├── resource.h
│ ├── STDAFX.CPP
│ └── STDAFX.H
└── Win
├── disk1
│ ├── data1.cab
│ ├── DATA.TAG
│ ├── _INST32I.EX_
│ ├── _ISDEL.EXE
│ ├── lang.dat
│ ├── layout.bin
│ ├── os.dat
│ ├── _SETUP.DLL
│ ├── SETUP.EXE
│ ├── SETUP.INI
│ ├── setup.ins
│ ├── setup.lid
│ ├── _sys1.cab
│ └── _user1.cab
└── disk2
└── data2.cab
23 directories, 112 files
评论